home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / ActiveX Controlls / NCTAudioEditor2 ActiveX DLL / NCTAudioEditor2.exe / {app} / Samples / TestBCBAudioEditor2 / Convert.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-10-10  |  1.1 KB  |  33 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef ConvertH
  3. #define ConvertH
  4. //----------------------------------------------------------------------------
  5. #include <vcl\ExtCtrls.hpp>
  6. #include <vcl\Buttons.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Controls.hpp>
  9. #include <vcl\Forms.hpp>
  10. #include <vcl\Graphics.hpp>
  11. #include <vcl\Classes.hpp>
  12. #include <vcl\SysUtils.hpp>
  13. #include <vcl\Windows.hpp>
  14. #include <vcl\System.hpp>
  15. //----------------------------------------------------------------------------
  16. class TfrmConvert : public TForm
  17. {
  18. __published:
  19.     TButton *OKBtn;
  20.     TButton *CancelBtn;
  21.     TRadioGroup *rgFrequency;
  22.     TRadioGroup *rgCnannels;
  23.     void __fastcall FormShow(TObject *Sender);
  24.     void __fastcall OKBtnClick(TObject *Sender);
  25. private:
  26. public:
  27.     virtual __fastcall TfrmConvert(TComponent* AOwner);
  28. };
  29. //----------------------------------------------------------------------------
  30. extern PACKAGE TfrmConvert *frmConvert;
  31. //----------------------------------------------------------------------------
  32. #endif    
  33.